home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 3 / ct-rom iiib.zip / ct-rom iiib / WINDOWS / UTILITY / MODEM / ALLOV10A / ALLOCOMM.TX_ / ALLOCOMM.TX
Text File  |  1994-05-18  |  6KB  |  143 lines

  1.  
  2. .Paragraph
  3.  
  4. Protocol
  5.  
  6. A set of rules for the transmission of data. It is  the 
  7. format by which information is sent through the phone line
  8. system. Error correction routines and compression data are
  9. commom protocols. The newer and better version of transfer
  10. protocol is ZModem.
  11.  
  12. Baud
  13.  
  14. The unit of measuring modem signalling speed.The number of signal
  15. changes on the line per second. Most people treat bits per second
  16. (bps) and Baud as being the same, but it is a wrong assumption. Most
  17. current modem send more than one bit per Baud, so the number of bits
  18. per second isn't the same as the baud rate. The bps rate varies from
  19. 2400 upto 100 kps or more. It depends not only on the hardware but also 
  20. the software and the connection line. Fiber optical cables can reach 
  21. extremely high bps rates. Dial phone lines are limited by a modulation
  22. band and noise that typical values of 14400 bps (no compression) are the
  23. top limit.
  24.  
  25. Parity
  26.  
  27. A means of checking transfer errors by adding an extra bit each ASCII
  28. character transmitted. Not very reliable and reduces the transfer ratio.
  29. Current error correction protocols have more efficient and reliable routines
  30. making parity checking not needed (set to "None").
  31.  
  32. Data Bits
  33.  
  34. Number of bits of data information transfered at a time. The  set of 
  35. ASCII can be sent using 7 data bits.Normally data bits are set on 8, 
  36. allowing a broader range of characters to be transferred.
  37.  
  38. Stop Bits
  39.  
  40. Number of bits  indicating the end of a data "package" sent and the begining
  41. of the next data "package".
  42.  
  43. Flow
  44.  
  45.  
  46. Serial Port
  47.  
  48. A connection that allows data to be transmitted bit by bit at a time.The
  49. standard serial port connector is the RS-232 and some variations.Modem
  50. operates as serial devices.Standard PC's generally have 4 serial ports,
  51. COM1-COM4.
  52.  
  53.  
  54. Download
  55.  
  56. Receiving  a file on your system from other remote computer or terminal.
  57.  
  58.  
  59. Upload
  60.  
  61. Sending a file from your system to other remote computer or terminal. 
  62.  
  63.  
  64. Xmodem
  65.  
  66.      Xmodem file transfer protocol (sometimes called MODEM7 or
  67. Xmodem/Checksum) is an error-checking protocol you'll encounter
  68. very frequently.  Created in 1978 by Ward Christensen and placed
  69. immediately into the public domain, Xmodem has become a de facto
  70. standard.  It can be found on almost all BBSs and online systems
  71. that offer error-checking protocols.  And, if a communications
  72. program offers any error-checking protocols at all--even one--
  73. Xmodem will be among them. Xmodem transfers files in 128-byte
  74. blocks.  It adds an extra bit--called a checksum--to each block,
  75. which the receiving system uses to calculate whether or not the
  76. block was accurately transmitted.  (A complex algorithm, based on
  77. the contents of the block, is used for this calculation).It cannot
  78. be used to communicate at 7 data bits, as it transmits files in 8-bit
  79. format only.  If a hardware error-checking protocol or flow control is 
  80. in effect, some Xmodem characters can be perceived as control characters,
  81. with unpredictable effects.
  82. Xmodem CRC.  CRC (Cyclic Redundancy Check) is an Xmodem
  83. option that modifies how Xmodem checks for errors.  CRC adds a
  84. second checksum bit to each block to enhance error checking.  
  85. Kermit:
  86.  
  87. Kermit
  88.  
  89. Kermit is equally as
  90. popular as Xmodem.   Kermit is similar to Xmodem in that it
  91. transfers files in blocks--or packets, as they are referred to in
  92. Kermit.  It also resembles Xmodem in its use of a checksum
  93. technique for error checking (a checksum bit--based on packet
  94. contents--is included with each packet).
  95. An interesting feature of Kermit is that its packet
  96. sizes can be changed to accommodate fixed packet sizes on a
  97. remote system, or varying transmission conditions.
  98.  
  99.  
  100. Ymodem:
  101.  
  102.      Ymodem operates in a manner very similar to that of Xmodem,
  103. the major difference between the two being the fact that Ymodem
  104. transmits data in 1024-byte (1K) blocks, rather than in 128-byte
  105. blocks.  Its major application is transmitting very large files.
  106. Ymodem's large block size increases transfer speed significantly
  107. when few or no errors are encountered.  
  108.  
  109. Zmodem:
  110.  
  111.      Zmodem operates much faster than most other protocols.
  112. Zmodem blocks are 512 bytes in size.  The protocol is relatively fast,
  113. even though it uses no buffering, which means a pause for disk
  114. access each time it sends or receives a block.  Efficiency rates
  115. of 99% (239 cps @ 2400 bps) are routinely achieved with many
  116. online services' implementations of Zmodem.
  117.  
  118. Flow
  119.  
  120.  
  121.     Almost all computer systems uses Data Buffering and Flow Control, 
  122. which means that incoming or outgoingdata is temporarily stored in RAM
  123. in what is called a buffer.
  124. Data buffering speeds up file transfer because it eliminates the
  125. number of times a transmission must be paused while the receiving
  126. or sending computer accesses its disk.
  127.     At the sending end of a file transfer, enough data is read
  128. from disk to fill a RAM buffer, then sent from RAM.  When the
  129. send buffer is empty, the disk is read again.  Because the buffer
  130. holds enough data for several seconds of transmission, there is
  131. less disk access.
  132.      The reverse occurs at the receiving end, with data being
  133. written to disk only when the receive buffer is filled.  The flow
  134. of incoming data is paused when this occurs, and is usually
  135. controlled by XON/XOFF (^Q/^S) protocol. 
  136.  
  137.  
  138. AT HAYES
  139.  
  140. A widely accepted standard set of commands stablished by Hayes Microcomputer
  141. for controlling modems.All commands starts with "AT" for calling the modem's
  142. attention.
  143.